
.active {
  color:crimson ;
}

.carousel-item img {
  width: 100%;
  height: 600px; /* Adjust the height as needed */
  object-fit: cover;
}
.blurb-section img {
  width: 100%;
  height: auto;
}
.bio-portrait img{
    border-radius: 50%;
    border: 1px solid black;
}

.blurb-section img {
  width: 80%;
  height: auto;
}
footer {
  background-color: #f15555;
  padding: 40px 0; /* Increase padding for the footer */
}
.blurb {
  padding: 20px; /* Add padding for the blurbs */
}
.blurb h5 {
  margin-bottom: 15px;
}

.card {
    margin-bottom: 15px;
}
.nav-item{
    align-content: space-around;
    border-radius: 5px;
}

/* about page*/
.abouttext {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* .navlogo{
    padding-left: 10%;
}*/

/* for the recent projects page */
.containerrp {
  max-width: 90%;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  
}

/* The css for the house plan page*/
.bodyhp {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #979494;
}
.containerhp {
    max-width: 90%;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    
}


.row {
  width: 95%;
  margin-bottom: 10px;
}
.columnhp {
    flex: 1 1 45%;
    margin-bottom: 20px;
}
.columnimage {
    width: 100%;
    height: auto;
    align-items: flex-start;
}
.hpre {
  width: 45%;
    height: auto;
    align-items: flex-start;
}
.column.description {
  display: flex;
  align-items: center;
  margin-top: 10px;

}

.icon-row {
  display: flex;

}
.icon {
    display: inline-block;
    margin-right: 10%;
    vertical-align: middle;
    width: 5%;
}

/* css for the separators for the house plans webpage*/
.separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
}
.separator::before,
.separator::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #ddd;
}
.separator:not(:empty)::before {
  margin-right: .25em;
}
.separator:not(:empty)::after {
  margin-left: .25em;
}
/* css for house plan anchor links */
.anchor-links {
  text-align: center;
  margin: 2rem 0;
}
.anchor-links a {
  margin: 0 1rem;
  color: #000000;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid #ff1e00;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}
.anchor-links a:hover {
  background-color: #ff0000;
  color: white;
}


/* flip box */

.title {
	margin-left: 10px;
  margin-top: 10px;
}

         .flip-box {
            background-color: transparent;
            width: 100%;
            height: 300px;
            perspective: 1000px;
            margin-bottom: 20px;
        }
        .flip-box-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.6s;
            transform-style: preserve-3d;
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        }
        .flip-box:hover .flip-box-inner {
            transform: rotateY(180deg);
        }
        .flip-box-front, .flip-box-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 5px;
        }
        .flip-box-front {
            background-color: #f15555;
            color: black;
        }
        .flip-box-back {
            background-color: #f15555;
            color: white;
            transform: rotateY(180deg);
        }
        .flip-box-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            object-fit: contain;
            width: 90%;
        }
